
create table "VaccineMasterPharmacyLink"(
					"VaccineMasterPharmacyLinkId" serial primary key,
					"VaccineMasterId" int references "VaccineMaster"("VaccineMasterId"),
					"PharmacyProductId" int references "PharmacyProduct"("PharmacyProductId"),
					"CreatedBy" int references "Account"("AccountId"),
					"CreatedDate" timestamp without time zone,
					"ModifiedBy" int references "Account"("AccountId"),
					"ModifiedDate" timestamp without time zone
);
